home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / K-CS.DCR / 00035.ls < prev    next >
Encoding:
Text File  |  2001-06-28  |  653 b   |  29 lines

  1. global BlinkObjekt
  2.  
  3. on new me
  4.   cursor(0)
  5.   set BlinkObject to 0
  6.   set the locH of sprite 99 to 780
  7.   set BlinkObjekt to new(script "Blink", 4, 80)
  8. end
  9.  
  10. on exitFrame
  11.   set Bredde to the width of sprite 48
  12.   if Bredde < 284 then
  13.     set the width of sprite 48 to Bredde + 2
  14.     set the text of member "FolderCount" to string(Bredde * 5)
  15.     if Bredde > 100 then
  16.       set the visible of sprite 49 to 1
  17.       if Bredde > 200 then
  18.         set the visible of sprite 50 to 1
  19.         set the text of member "SpyCount" to "33"
  20.       else
  21.         set the text of member "SpyCount" to "31"
  22.       end if
  23.     end if
  24.     go(#loop)
  25.   else
  26.     go(#next)
  27.   end if
  28. end
  29.